home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 1 / Atari Mega Archive - Volume 1.iso / archiver / sttar.arc / sttar.doc < prev   
Text File  |  1988-02-08  |  2KB  |  47 lines

  1.     This documentation is a short description of how to extract ALL files
  2. from a unix tar file, list all files in a unix tar file and create your own
  3. unix compatible tar files on your ATARI ST.
  4.  
  5.     There are two programs in this collection. DTAR.TTP extracts ALL files
  6. from a tar file or lists the contents of a tar file.  CTAR.TTP creates a tar
  7. file from the files or directories specified on the command line
  8.  
  9.     USAGE
  10.     
  11.     dtar [d] tarfile
  12.  
  13.     If d is specified the tar file contents are listed no extraction takes
  14. place.  If the d option is not specified this program proceeds to extract all
  15. files in the tar file creating directories as necessary. This program requires
  16. the extension of tarfile to be TAR.
  17.  
  18.     ctar tarfile <files and/or directories to include>
  19.  
  20.     This program produces a unix compatible tar file from the files and
  21. or directories specified on the command line. If a directory is specified
  22. then the entire contents of that directory and its subdirectories are added.
  23. If a file is specified in a directory other than the current directory, it
  24. will be extracted into a directory with the same name as the specified directory
  25. in the tar file.
  26.  
  27.     EXAMPLE
  28.  
  29.     test is a directory contains files a1,a2 and directories b1,b2.
  30.     b1 contains files c1,c2 and b2 contains files c1,c3 then 
  31.  
  32.     ctar test.tar test
  33.     
  34.     will create a file containing all the files
  35.     test\a1, test\a2, test\b1\c1, test\b1\c2, test\b2\c1, test\b2\c3.
  36.  
  37.     When these files are extracted the directories test, test\b1, test\b2
  38.     will be created and the files will be placed in the appropriate
  39.     directories, as they were originally. If these directories already
  40.     exist the contents of the tar file will be appended to their current
  41.     contents.
  42.  
  43.  
  44.     Unix tar and unix compresss is a method of transmitting entire directory
  45. trees between two computers. Unix compress is contained in another arc file.
  46. Sources available in the archive tarsrc.arc
  47.